home *** CD-ROM | disk | FTP | other *** search
/ Mac Format 1994 October / Macformat17.cdr / Shareware City / Developers / DropShell 2.0 sources Folder / DSAppleEvents.c < prev    next >
Text File  |  1994-07-01  |  9KB  |  264 lines

  1. /******************************************************************************
  2. **
  3. **  Project Name:    DropShell
  4. **     File Name:    DSAppleEvents.c
  5. **
  6. **   Description:    Generic AppleEvent handling routines
  7. **                    
  8. **                    This is the set of routines for handling the required Apple events.
  9. **                    You should NEVER have to modify this file!!!
  10. **                    Simply add code in DSUserProcs to the routines called by these.
  11. **
  12. *******************************************************************************
  13. **                       A U T H O R   I D E N T I T Y
  14. *******************************************************************************
  15. **
  16. **    Initials    Name
  17. **    --------    -----------------------------------------------
  18. **    LDR            Leonard Rosenthol
  19. **    MTC            Marshall Clow
  20. **    SCS            Stephan Somogyi
  21. **
  22. *******************************************************************************
  23. **                      R E V I S I O N   H I S T O R Y
  24. *******************************************************************************
  25. **
  26. **      Date        Author    Description
  27. **    ---------    ------    ---------------------------------------------
  28. **    20 Feb 94    LDR        Modified _HandleDocs to pass item count to preflight & postflight
  29. **    11 Dec 93    SCS        Universal Headers/UPPs (Phoenix 68k/PPC & PPCC)
  30. **                        Skipped System 6 compatible rev of DropShell source
  31. **    11/24/91    LDR        Added a handler for 'pdoc' as per DTS recommendation
  32. **                            This caused some reorg & userProc routine changes
  33. **                            I also created a new common AEVT doc extractor
  34. **                        Cleaned up error handling by adding FailErr
  35. **                        Cleaned up the placement of braces
  36. **                        Added the passing of a userDataHandle to the odoc/pdoc routines
  37. **    10/29/91    SCS        Changes for THINK C 5
  38. **    10/28/91    LDR        Officially renamed DropShell (from QuickShell)
  39. **                        Added a bunch of comments for clarification
  40. **    10/06/91    MTC        Converted to MPW C
  41. **    04/09/91    LDR        Added to Projector
  42. **
  43. ******************************************************************************/
  44.  
  45. #include "DSGlobals.h"
  46. #include "DSUserProcs.h"
  47.  
  48. #include "DSAppleEvents.h"
  49.  
  50. AEEventHandlerUPP    OAPPHandlerUPP, ODOCHandlerUPP, PDOCHandlerUPP, QUITHandlerUPP;
  51.  
  52. /*
  53.     This routine does all initialization for AEM, including the
  54.     creation and then population of the dispatch table.
  55. */
  56. #pragma segment Initialize
  57. pascal void InitAEVTStuff ()  {
  58.     OSErr aevtErr;
  59.  
  60.     aevtErr = noErr;
  61.     
  62.     if ( aevtErr == noErr )    {
  63.         OAPPHandlerUPP = NewAEEventHandlerProc(HandleOAPP);
  64.         aevtErr = AEInstallEventHandler ( kCoreEventClass, kAEOpenApplication, OAPPHandlerUPP, 0, false );
  65.     }
  66.  
  67.  
  68.     if ( aevtErr == noErr )    {
  69.         ODOCHandlerUPP = NewAEEventHandlerProc(HandleODOC);
  70.         aevtErr = AEInstallEventHandler ( kCoreEventClass, kAEOpenDocuments, ODOCHandlerUPP, 0, false );
  71.     }
  72.  
  73.     if ( aevtErr == noErr )    {
  74.         PDOCHandlerUPP = NewAEEventHandlerProc(HandlePDOC);
  75.         aevtErr = AEInstallEventHandler ( kCoreEventClass, kAEPrintDocuments, PDOCHandlerUPP, 0, false );
  76.     }
  77.  
  78.     if ( aevtErr == noErr )    {
  79.         QUITHandlerUPP = NewAEEventHandlerProc(HandleQuit);
  80.         aevtErr = AEInstallEventHandler ( kCoreEventClass, kAEQuitApplication, QUITHandlerUPP, 0, false );
  81.     }
  82.  
  83.     if ( aevtErr == noErr )
  84.         InstallOtherEvents ();
  85.  
  86.         
  87.     if ( aevtErr != noErr )
  88.         ;        // report an error if you are so included
  89. }
  90.  
  91.  
  92.  
  93. /*    
  94.     This routine is a utility routine for checking that all required 
  95.     parameters in the Apple event have been used.
  96. */
  97. #pragma segment Main
  98. OSErr GotRequiredParams ( AppleEvent *theAppleEvent ) {
  99.     DescType    typeCode;
  100.     Size        actualSize;
  101.     OSErr        retErr, err;
  102.  
  103.     err = AEGetAttributePtr ( theAppleEvent, keyMissedKeywordAttr,
  104.                     typeWildCard, &typeCode, NULL, 0, &actualSize );
  105.     
  106.     if ( err == errAEDescNotFound )    // we got all the required params: all is ok
  107.         retErr = noErr;
  108.     else if ( err == noErr )
  109.         retErr = errAEEventNotHandled;
  110.     else 
  111.         retErr = err;
  112.     
  113.     return retErr;
  114. }
  115.  
  116. /*
  117.     This is another routine useful for showing debugging info.
  118.     It calls the ErrorAlert routine from DSUtils to put up the 
  119.     error message.
  120.  
  121. */
  122. void FailErr(OSErr err) {
  123.  
  124.     if (err != noErr)
  125.         ErrorAlert(kErrStringID, kAEVTErr, err);
  126. }
  127.  
  128. /*    
  129.     This routine is the handler for the oapp (Open Application) event.
  130.     
  131.     It first checks the number of parameters to make sure we got them all 
  132.     (even though we don't want any) and then calls the OpenApp userProc in QSUserProcs.
  133.     Finally it checks to see if the caller wanted a reply & sends one, setting any error.
  134. */
  135. #pragma segment Main
  136. pascal OSErr HandleOAPP ( AppleEvent *theAppleEvent, AppleEvent *reply, long handlerRefcon ) {
  137. #pragma unused ( handlerRefcon )
  138.     OSErr err;
  139.  
  140.     FailErr(err = GotRequiredParams ( theAppleEvent ));
  141.  
  142.     // let's show the user the splash screen
  143. //    ShowWindow(gSplashScreen);
  144.  
  145.     OpenApp ();        // pass it on to the app specific routine
  146.  
  147.     if ( reply->dataHandle != NULL )    /*    a reply is sought */
  148.         FailErr(err = AEPutParamPtr ( reply, 'errs', 'TEXT', "Opening", 7 ));
  149.     
  150.     return err;
  151. }
  152.  
  153.  
  154. /*    
  155.     This routine is the handler for the quit (Quit Application) event.
  156.     
  157.     It first checks the number of parameters to make sure we got them all 
  158.     (even though we don't want any) and then calls the QuitApp userProc in QSUserProcs.
  159.     Finally it checks to see if the caller wanted a reply & sends one, setting any error.
  160. */
  161.  
  162. #pragma segment Main
  163. pascal OSErr HandleQuit ( AppleEvent *theAppleEvent, AppleEvent *reply, long handlerRefcon ) {
  164. #pragma unused ( handlerRefcon )
  165.     OSErr err;
  166.     
  167.     FailErr( err = GotRequiredParams ( theAppleEvent ));
  168.  
  169.     QuitApp ();        // pass it on to the app specific routine
  170.  
  171.     if ( reply->dataHandle != NULL )    /*    a reply is sought */
  172.         FailErr(err = AEPutParamPtr ( reply, 'errs', 'TEXT', "Qutting", 7 ));
  173.     
  174.     return err;
  175. }
  176.  
  177.  
  178. /*    
  179.     This routine is the low level processing routine for both the 
  180.     odoc (Open Document) and pdoc (Print Document) events.
  181.     
  182.     This routine is the key one, since this is how we get the list of
  183.     files/folders/disks to process.  The first thing to do is the get the
  184.     list of files, and then make sure that's all the parameters (should be!).
  185.     We then send call the PreflightDocs routine (from DSUserProcs), process
  186.     each file in the list by calling OpenDoc (again in DSUserProcs), and finally
  187.     call PostflightDocs (you know where) and setting a return value.
  188. */
  189. #pragma segment Main
  190. pascal OSErr _HandleDocs ( AppleEvent *theAppleEvent, AppleEvent *reply, Boolean opening ) {
  191. #pragma unused ( reply )
  192. #pragma unused ( handlerRefcon )
  193.     OSErr        err;
  194.     FSSpec        myFSS;
  195.     AEDescList    docList;
  196.     long        index, itemsInList;
  197.     Size        actualSize;
  198.     AEKeyword    keywd;
  199.     DescType    typeCode;
  200.     Handle        userDataHandle;
  201.     
  202.  
  203.     FailErr(err = AEGetParamDesc ( theAppleEvent, keyDirectObject, typeAEList, &docList ));
  204.     FailErr(err = GotRequiredParams ( theAppleEvent ));
  205.  
  206.     /*    How many items do we have?. */
  207.     /* NOTE: Moved here in DS 2.0 due to requests for this info in preflighter */
  208.     FailErr(err = AECountItems ( &docList, &itemsInList ));
  209.     
  210.     if (PreFlightDocs (opening, itemsInList, &userDataHandle))    {    // let the app do any preflighting it might need
  211.  
  212.         for ( index = 1; index <= itemsInList; index++ ) {
  213.             FailErr(err = AEGetNthPtr ( &docList, index, typeFSS, &keywd, &typeCode,
  214.                     (Ptr) &myFSS, sizeof ( myFSS ), &actualSize ));
  215.     
  216.             OpenDoc( &myFSS, opening, userDataHandle );    // call the userProc
  217.         }
  218.     
  219.         PostFlightDocs (opening, itemsInList, userDataHandle);    // cleanup time
  220.     }
  221.     else
  222.         err = errAEEventNotHandled;    // tells AEM that we didn't handle it!
  223.         
  224.     FailErr(AEDisposeDesc ( &docList ));
  225.  
  226.     return err;
  227. }
  228.  
  229. /*
  230.     This routine is the handler for the odoc (Open Document) event.
  231.     
  232.     The odoc event simply calls the common _HandleDocs routines, which will
  233.     do the dirty work of parsing the AEVT & calling the userProcs.
  234. */
  235. #pragma segment Main
  236. pascal OSErr HandleODOC ( AppleEvent *theAppleEvent, AppleEvent *reply, long handlerRefcon ) {
  237. #pragma unused ( handlerRefcon )
  238.     
  239.     return (_HandleDocs(theAppleEvent, reply, true));    // call the low level routine
  240. }
  241.  
  242. /*
  243.     This routine is the handler for the pdoc (Print Document) event.
  244.     
  245.     The pdoc event like the odoc simply calls the common _HandleDocs routines
  246. */
  247. #pragma segment Main
  248. pascal OSErr HandlePDOC ( AppleEvent *theAppleEvent, AppleEvent *reply, long handlerRefcon ) {
  249. #pragma unused ( handlerRefcon )
  250.     
  251.     return (_HandleDocs(theAppleEvent, reply, false));    // call the low level routine
  252. }
  253.  
  254. /*    
  255.     This is the routine called by the main event loop, when a high level
  256.     event is found.  Since we only deal with Apple events, and not other
  257.     high level events, we just pass everything onto the AEM via AEProcessAppleEvent
  258. */
  259. #pragma segment Main
  260. pascal void DoHighLevelEvent ( EventRecord *event ) {
  261.  
  262.     FailErr ( AEProcessAppleEvent ( event ) );
  263. }
  264.